diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/pq/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/pq/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/pq/page.tsx b/app/[lng]/evcp/(evcp)/pq/page.tsx index 46b22b12..02cb621e 100644 --- a/app/[lng]/evcp/(evcp)/pq/page.tsx +++ b/app/[lng]/evcp/(evcp)/pq/page.tsx @@ -9,7 +9,7 @@ import { Shell } from "@/components/shell" import { getVendorsInPQ } from "@/lib/pq/service" import { searchParamsCache } from "@/lib/vendors/validations" import { VendorsPQReviewTable } from "@/lib/pq/pq-review-table/vendors-table" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> } @@ -33,9 +33,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - Pre-Qualification Review - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + Pre-Qualification Review + </h2> + <InformationButton pageCode="evcp/pq" /> + </div> <p className="text-muted-foreground"> 벤더가 제출한 PQ를 확인하고 수정 요청 등을 할 수 있으며 PQ 종료 후에는 통과 여부를 결정할 수 있습니다. |
